home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form FrmCall
- Caption = "About Box Sample for VB4"
- ClientHeight = 1725
- ClientLeft = 1320
- ClientTop = 1890
- ClientWidth = 4320
- Height = 2415
- Icon = "CALLING.frx":0000
- Left = 1260
- LinkTopic = "Form1"
- LockControls = -1 'True
- ScaleHeight = 1725
- ScaleWidth = 4320
- Top = 1260
- Width = 4440
- Begin VB.Label Label1
- Alignment = 2 'Center
- BorderStyle = 1 'Fixed Single
- Caption = $"CALLING.frx":0442
- Height = 1515
- Left = 120
- TabIndex = 0
- Top = 60
- Width = 4050
- WordWrap = -1 'True
- End
- Begin VB.Menu MnuHelp
- Caption = "&Help"
- Begin VB.Menu MnuAboutBox
- Caption = "&About..."
- End
- End
- Attribute VB_Name = "FrmCall"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- ' *******************************************************************
- ' Some code and files: 1996 by Gregory H. Bragg, SofTecH Development
- ' 1995 by David Warren, MMC Software
- ' Some of the Registry code is from the VB4 Setup Kit, SETUP1 files.
- ' Originally published by PC Magazine. Ported over to
- ' 32 Bit VB4 by Gregory H. Bragg starting March 6, 1996
- ' Original: November 8, 1993 By Neil J. Rubenking
- ' Revised: March 10, 1996 By Gregory H. Bragg
- ' To use the generic 'About Box' Form file, your VBP file must
- ' also include the module ABOUTBOX.BAS. Just call the function
- ' DisplayAboutBox, passing parameters specific to your program.
- ' DO NOT load the form FAB prior to calling DisplayAboutBox!
- ' *******************************************************************
- Option Explicit
- Private Sub MnuAboutBox_Click()
- ' The generic About Box is implemented in the files ABOUTBOX.FRM
- ' and ABOUTBOX.BAS. Function DisplayAboutBox() handles it all.
- DisplayAboutBox FrmCall, "Multi-Print", 2#, 1996, _
- Space$(5) + "Gregory H. Bragg", Space$(40) + "(416) 399-0995", _
- "Serial # 100000022" + Space$(4) + "CompuServe: 75027, 2674", _
- 0, False, 0, 0
-
- ' DisplayAboutBox FrmCall, "Multi-Print", 2#, 1996, _
- ' Space$(5) + "Gregory H. Bragg", Space$(40) + "(416) 399-0995", _
- ' "Serial # 100000022" + Space$(4) + "CompuServe: 75027, 2674", _
- ' AB_NO_VIRTUAL Or AB_NO_PAGING Or AB_NO_PHYSICAL Or AB_NO_CPU Or AB_NO_MEMLOAD, False, 0, 0
- End Sub
-